summaryrefslogtreecommitdiff
path: root/app/[lng]/engineering/(engineering)/settings/preferences/page.tsx
blob: e2a88021bfa6d53826a8474e275003b6fa32e347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Separator } from "@/components/ui/separator"
import { AppearanceForm } from "@/components/settings/appearance-form"

export default function SettingsAppearancePage() {
  return (
    <div className="space-y-6">
      <div>
        <h3 className="text-lg font-medium">Preference</h3>
        <p className="text-sm text-muted-foreground">
          Customize the preference of the app. 
        </p>
      </div>
      <Separator />
      <AppearanceForm />
    </div>
  )
}